home *** CD-ROM | disk | FTP | other *** search
/ CrystalVision Software Se… Wiki Wonder - Wikipedia / CrystalVision Software Services 703: The Wiki Wonder - Wikipedia.iso / 0703 / Business / CodeX Apps / CodeX.exe / PHP / php.ini < prev    next >
Encoding:
INI File  |  2006-12-27  |  39.2 KB  |  1,136 lines

  1. [PHP]
  2. ;;;;;;;;;;;;;;;;;;;;
  3. ; Language Options ;
  4. ;;;;;;;;;;;;;;;;;;;;
  5.  
  6. ; Enable the PHP scripting language engine under Apache.
  7. engine = On
  8.  
  9. ; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
  10. zend.ze1_compatibility_mode = Off
  11.  
  12. ; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.
  13. ; NOTE: Using short tags should be avoided when developing applications or
  14. ; libraries that are meant for redistribution, or deployment on PHP
  15. ; servers which are not under your control, because short tags may not
  16. ; be supported on the target server. For portable, redistributable code,
  17. ; be sure not to use short tags.
  18. short_open_tag = Off
  19.  
  20. ; Allow ASP-style <% %> tags.
  21. asp_tags = Off
  22.  
  23. ; The number of significant digits displayed in floating point numbers.
  24. precision    =  12
  25.  
  26. ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
  27. y2k_compliance = On
  28.  
  29. ; Output buffering allows you to send header lines (including cookies) even
  30. ; after you send body content, at the price of slowing PHP's output layer a
  31. ; bit.  You can enable output buffering during runtime by calling the output
  32. ; buffering functions.  You can also enable output buffering for all files by
  33. ; setting this directive to On.  If you wish to limit the size of the buffer
  34. ; to a certain size - you can use a maximum number of bytes instead of 'On', as
  35. ; a value for this directive (e.g., output_buffering=4096).
  36. output_buffering = Off
  37.  
  38. ; You can redirect all of the output of your scripts to a function.  For
  39. ; example, if you set output_handler to "mb_output_handler", character
  40. ; encoding will be transparently converted to the specified encoding.
  41. ; Setting any output handler automatically turns on output buffering.
  42. ; Note: People who wrote portable scripts should not depend on this ini
  43. ;       directive. Instead, explicitly set the output handler using ob_start().
  44. ;       Using this ini directive may cause problems unless you know what script
  45. ;       is doing.
  46. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
  47. ;       and you cannot use both "ob_gzhandler" and "zlib.output_compression".
  48. ; Note: output_handler must be empty if this is set 'On' !!!!
  49. ;       Instead you must use zlib.output_handler.
  50. ;output_handler =
  51.  
  52. ; Transparent output compression using the zlib library
  53. ; Valid values for this option are 'off', 'on', or a specific buffer size
  54. ; to be used for compression (default is 4KB)
  55. ; Note: Resulting chunk size may vary due to nature of compression. PHP
  56. ;       outputs chunks that are few hundreds bytes each as a result of
  57. ;       compression. If you prefer a larger chunk size for better
  58. ;       performance, enable output_buffering in addition.
  59. ; Note: You need to use zlib.output_handler instead of the standard
  60. ;       output_handler, or otherwise the output will be corrupted.
  61. zlib.output_compression = Off
  62.  
  63. ; You cannot specify additional output handlers if zlib.output_compression
  64. ; is activated here. This setting does the same as output_handler but in
  65. ; a different order.
  66. ;zlib.output_handler =
  67.  
  68. ; Implicit flush tells PHP to tell the output layer to flush itself
  69. ; automatically after every output block.  This is equivalent to calling the
  70. ; PHP function flush() after each and every call to print() or echo() and each
  71. ; and every HTML block.  Turning this option on has serious performance
  72. ; implications and is generally recommended for debugging purposes only.
  73. implicit_flush = Off
  74.  
  75. ; The unserialize callback function will be called (with the undefined class'
  76. ; name as parameter), if the unserializer finds an undefined class
  77. ; which should be instanciated.
  78. ; A warning appears if the specified function is not defined, or if the
  79. ; function doesn't include/implement the missing class.
  80. ; So only set this entry, if you really want to implement such a
  81. ; callback-function.
  82. unserialize_callback_func=
  83.  
  84. ; When floats & doubles are serialized store serialize_precision significant
  85. ; digits after the floating point. The default value ensures that when floats
  86. ; are decoded with unserialize, the data will remain the same.
  87. serialize_precision = 100
  88.  
  89. ; Whether to enable the ability to force arguments to be passed by reference
  90. ; at function call time.  This method is deprecated and is likely to be
  91. ; unsupported in future versions of PHP/Zend.  The encouraged method of
  92. ; specifying which arguments should be passed by reference is in the function
  93. ; declaration.  You're encouraged to try and turn this option Off and make
  94. ; sure your scripts work properly with it in order to ensure they will work
  95. ; with future versions of the language (you will receive a warning each time
  96. ; you use this feature, and the argument will be passed by value instead of by
  97. ; reference).
  98. allow_call_time_pass_reference = On
  99.  
  100. ;
  101. ; Safe Mode
  102. ;
  103. safe_mode = Off
  104.  
  105. ; By default, Safe Mode does a UID compare check when
  106. ; opening files. If you want to relax this to a GID compare,
  107. ; then turn on safe_mode_gid.
  108. safe_mode_gid = Off
  109.  
  110. ; When safe_mode is on, UID/GID checks are bypassed when
  111. ; including files from this directory and its subdirectories.
  112. ; (directory must also be in include_path or full path must
  113. ; be used when including)
  114. safe_mode_include_dir =
  115.  
  116. ; When safe_mode is on, only executables located in the safe_mode_exec_dir
  117. ; will be allowed to be executed via the exec family of functions.
  118. safe_mode_exec_dir =
  119.  
  120. ; Setting certain environment variables may be a potential security breach.
  121. ; This directive contains a comma-delimited list of prefixes.  In Safe Mode,
  122. ; the user may only alter environment variables whose names begin with the
  123. ; prefixes supplied here.  By default, users will only be able to set
  124. ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
  125. ;
  126. ; Note:  If this directive is empty, PHP will let the user modify ANY
  127. ; environment variable!
  128. safe_mode_allowed_env_vars = PHP_
  129.  
  130. ; This directive contains a comma-delimited list of environment variables that
  131. ; the end user won't be able to change using putenv().  These variables will be
  132. ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
  133. safe_mode_protected_env_vars = LD_LIBRARY_PATH
  134.  
  135. ; open_basedir, if set, limits all file operations to the defined directory
  136. ; and below.  This directive makes most sense if used in a per-directory
  137. ; or per-virtualhost web server configuration file. This directive is
  138. ; *NOT* affected by whether Safe Mode is turned On or Off.
  139. ;open_basedir =
  140.  
  141. ; This directive allows you to disable certain functions for security reasons.
  142. ; It receives a comma-delimited list of function names. This directive is
  143. ; *NOT* affected by whether Safe Mode is turned On or Off.
  144. disable_functions =
  145.  
  146. ; This directive allows you to disable certain classes for security reasons.
  147. ; It receives a comma-delimited list of class names. This directive is
  148. ; *NOT* affected by whether Safe Mode is turned On or Off.
  149. disable_classes =
  150.  
  151. ; Colors for Syntax Highlighting mode.  Anything that's acceptable in
  152. ; <font color="??????"> would work.
  153. ;highlight.string  = #DD0000
  154. ;highlight.comment = #FF9900
  155. ;highlight.keyword = #007700
  156. ;highlight.bg      = #FFFFFF
  157. ;highlight.default = #0000BB
  158. ;highlight.html    = #000000
  159.  
  160.  
  161. ;
  162. ; Misc
  163. ;
  164. ; Decides whether PHP may expose the fact that it is installed on the server
  165. ; (e.g. by adding its signature to the Web server header).  It is no security
  166. ; threat in any way, but it makes it possible to determine whether you use PHP
  167. ; on your server or not.
  168. expose_php = On
  169.  
  170.  
  171. ;;;;;;;;;;;;;;;;;;;
  172. ; Resource Limits ;
  173. ;;;;;;;;;;;;;;;;;;;
  174.  
  175. max_execution_time = 30     ; Maximum execution time of each script, in seconds
  176. max_input_time = 60    ; Maximum amount of time each script may spend parsing request data
  177. memory_limit = 8M      ; Maximum amount of memory a script may consume (8MB)
  178.  
  179.  
  180. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  181. ; Error handling and logging ;
  182. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  183.  
  184. ; error_reporting is a bit-field.  Or each number up to get desired error
  185. ; reporting level
  186. ; E_ALL             - All errors and warnings
  187. ; E_ERROR           - fatal run-time errors
  188. ; E_WARNING         - run-time warnings (non-fatal errors)
  189. ; E_PARSE           - compile-time parse errors
  190. ; E_NOTICE          - run-time notices (these are warnings which often result
  191. ;                     from a bug in your code, but it's possible that it was
  192. ;                     intentional (e.g., using an uninitialized variable and
  193. ;                     relying on the fact it's automatically initialized to an
  194. ;                     empty string)
  195. ; E_STRICT            - run-time notices, enable to have PHP suggest changes
  196. ;                     to your code which will ensure the best interoperability
  197. ;                     and forward compatibility of your code
  198. ; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
  199. ; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
  200. ;                     initial startup
  201. ; E_COMPILE_ERROR   - fatal compile-time errors
  202. ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
  203. ; E_USER_ERROR      - user-generated error message
  204. ; E_USER_WARNING    - user-generated warning message
  205. ; E_USER_NOTICE     - user-generated notice message
  206. ;
  207. ; Examples:
  208. ;
  209. ;   - Show all errors, except for notices and coding standards warnings
  210. ;
  211. ;error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
  212. ;
  213. ;   - Show all errors, except for notices
  214. ;
  215. ;error_reporting = E_ALL & ~E_NOTICE
  216. ;
  217. ;   - Show only errors
  218. ;
  219. ;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
  220. ;
  221. ;   - Show all errors except for notices and coding standards warnings
  222. ;
  223. error_reporting  = E_ALL & ~E_NOTICE; display all errors, warnings and notices
  224.  
  225. ; Print out errors (as a part of the output).  For production web sites,
  226. ; you're strongly encouraged to turn this feature off, and use error logging
  227. ; instead (see below).  Keeping display_errors enabled on a production web site
  228. ; may reveal security information to end users, such as file paths on your Web
  229. ; server, your database schema or other information.
  230. display_errors = Off
  231.  
  232. ; Even when display_errors is on, errors that occur during PHP's startup
  233. ; sequence are not displayed.  It's strongly recommended to keep
  234. ; display_startup_errors off, except for when debugging.
  235. display_startup_errors = Off
  236.  
  237. ; Log errors into a log file (server-specific log, stderr, or error_log (below))
  238. ; As stated above, you're strongly advised to use error logging in place of
  239. ; error displaying on production web sites.
  240. log_errors = On
  241.  
  242. ; Set maximum length of log_errors. In error_log information about the source is
  243. ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
  244. log_errors_max_len = 1024
  245.  
  246. ; Do not log repeated messages. Repeated errors must occur in same file on same
  247. ; line until ignore_repeated_source is set true.
  248. ignore_repeated_errors = On
  249.  
  250. ; Ignore source of message when ignoring repeated messages. When this setting
  251. ; is On you will not log errors with repeated messages from different files or
  252. ; sourcelines.
  253. ignore_repeated_source = On
  254.  
  255. ; If this parameter is set to Off, then memory leaks will not be shown (on
  256. ; stdout or in the log). This has only effect in a debug compile, and if
  257. ; error reporting includes E_WARNING in the allowed list
  258. report_memleaks = On
  259.  
  260. ; Store the last error/warning message in $php_errormsg (boolean).
  261. track_errors = Off
  262.  
  263. ; Disable the inclusion of HTML tags in error messages.
  264. ; Note: Never use this feature for production boxes.
  265. ;html_errors = Off
  266.  
  267. ; If html_errors is set On PHP produces clickable error messages that direct
  268. ; to a page describing the error or function causing the error in detail.
  269. ; You can download a copy of the PHP manual from http://www.php.net/docs.php
  270. ; and change docref_root to the base URL of your local copy including the
  271. ; leading '/'. You must also specify the file extension being used including
  272. ; the dot.
  273. ; Note: Never use this feature for production boxes.
  274. ;docref_root = "/phpmanual/"
  275. ;docref_ext = .html
  276.  
  277. ; String to output before an error message.
  278. ;error_prepend_string = "<font color=ff0000>"
  279.  
  280. ; String to output after an error message.
  281. ;error_append_string = "</font>"
  282.  
  283. ; Log errors to specified file.
  284. ;error_log = filename
  285.  
  286. ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
  287. ;error_log = syslog
  288.  
  289.  
  290. ;;;;;;;;;;;;;;;;;
  291. ; Data Handling ;
  292. ;;;;;;;;;;;;;;;;;
  293. ;
  294. ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
  295.  
  296. ; The separator used in PHP generated URLs to separate arguments.
  297. ; Default is "&".
  298. ;arg_separator.output = "&"
  299.  
  300. ; List of separator(s) used by PHP to parse input URLs into variables.
  301. ; Default is "&".
  302. ; NOTE: Every character in this directive is considered as separator!
  303. ;arg_separator.input = ";&"
  304.  
  305. ; This directive describes the order in which PHP registers GET, POST, Cookie,
  306. ; Environment and Built-in variables (G, P, C, E & S respectively, often
  307. ; referred to as EGPCS or GPC).  Registration is done from left to right, newer
  308. ; values override older values.
  309. variables_order = "EGPCS"
  310.  
  311. ; Whether or not to register the EGPCS variables as global variables.  You may
  312. ; want to turn this off if you don't want to clutter your scripts' global scope
  313. ; with user data.  This makes most sense when coupled with track_vars - in which
  314. ; case you can access all of the GPC variables through the $HTTP_*_VARS[],
  315. ; variables.
  316. ;
  317. ; You should do your best to write your scripts so that they do not require
  318. ; register_globals to be on;  Using form variables as globals can easily lead
  319. ; to possible security problems, if the code is not very well thought of.
  320. register_globals = On
  321.  
  322. ; Whether or not to register the old-style input arrays, HTTP_GET_VARS
  323. ; and friends.  If you're not using them, it's recommended to turn them off,
  324. ; for performance reasons.
  325. register_long_arrays = On
  326.  
  327. ; This directive tells PHP whether to declare the argv&argc variables (that
  328. ; would contain the GET information).  If you don't use these variables, you
  329. ; should turn it off for increased performance.
  330. register_argc_argv = On
  331.  
  332. ; Maximum size of POST data that PHP will accept.
  333. post_max_size = 20M
  334.  
  335. ; Magic quotes
  336. ;
  337.  
  338. ; Magic quotes for incoming GET/POST/Cookie data.
  339. magic_quotes_gpc = On
  340.  
  341. ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
  342. magic_quotes_runtime = Off
  343.  
  344. ; Use Sybase-style magic quotes (escape ' with '' instead of \').
  345. magic_quotes_sybase = Off
  346.  
  347. ; Automatically add files before or after any PHP document.
  348. auto_prepend_file =
  349. auto_append_file =
  350.  
  351. ; As of 4.0b4, PHP always outputs a character encoding by default in
  352. ; the Content-type: header.  To disable sending of the charset, simply
  353. ; set it to be empty.
  354. ;
  355. ; PHP's built-in default is text/html
  356. default_mimetype = "text/html"
  357. ;default_charset = "iso-8859-1"
  358.  
  359. ; Always populate the $HTTP_RAW_POST_DATA variable.
  360. ;always_populate_raw_post_data = On
  361.  
  362.  
  363. ;;;;;;;;;;;;;;;;;;;;;;;;;
  364. ; Paths and Directories ;
  365. ;;;;;;;;;;;;;;;;;;;;;;;;;
  366.  
  367. ; UNIX: "/path1:/path2"
  368. ;include_path = ".:/php/includes"
  369. ;
  370. ; Windows: "\path1;\path2"
  371. ;include_path = ".;c:\php\includes"
  372.  
  373. ; The root of the PHP pages, used only if nonempty.
  374. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  375. ; if you are running php as a CGI under any web server (other than IIS)
  376. ; see documentation for security issues.  The alternate is to use the
  377. ; cgi.force_redirect configuration below
  378. doc_root =
  379.  
  380. ; The directory under which PHP opens the script using /~username used only
  381. ; if nonempty.
  382. user_dir =
  383.  
  384. ; Directory in which the loadable extensions (modules) reside.
  385. extension_dir = "C:/Program Files/CodeX Project/PHP/ext/"
  386.  
  387. ; Whether or not to enable the dl() function.  The dl() function does NOT work
  388. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  389. ; disabled on them.
  390. enable_dl = On
  391.  
  392. ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
  393. ; most web servers.  Left undefined, PHP turns this on by default.  You can
  394. ; turn it off here AT YOUR OWN RISK
  395. ; **You CAN safely turn this off for IIS, in fact, you MUST.**
  396. ; cgi.force_redirect = 1
  397. cgi.force_redirect = 0
  398.  
  399. ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
  400. ; every request.
  401. ; cgi.nph = 1
  402.  
  403. ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
  404. ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
  405. ; will look for to know it is OK to continue execution.  Setting this variable MAY
  406. ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
  407. ; cgi.redirect_status_env = ;
  408.  
  409. ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
  410. ; security tokens of the calling client.  This allows IIS to define the
  411. ; security context that the request runs under.  mod_fastcgi under Apache
  412. ; does not currently support this feature (03/17/2002)
  413. ; Set to 1 if running under IIS.  Default is zero.
  414. ; fastcgi.impersonate = 1;
  415.  
  416. ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
  417. ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
  418. ; is supported by Apache. When this option is set to 1 PHP will send
  419. ; RFC2616 compliant header.
  420. ; Default is zero.
  421. ;cgi.rfc2616_headers = 0
  422.  
  423.  
  424. ;;;;;;;;;;;;;;;;
  425. ; File Uploads ;
  426. ;;;;;;;;;;;;;;;;
  427.  
  428. ; Whether to allow HTTP file uploads.
  429. file_uploads = On
  430.  
  431. ; Temporary directory for HTTP uploaded files (will use system default if not
  432. ; specified).
  433. ;upload_tmp_dir = R:\  ; temporary directory for HTTP uploaded files (will use system default if not specified)
  434.  
  435. ; Maximum allowed size for uploaded files.
  436. upload_max_filesize = 20M
  437.  
  438.  
  439. ;;;;;;;;;;;;;;;;;;
  440. ; Fopen wrappers ;
  441. ;;;;;;;;;;;;;;;;;;
  442.  
  443. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  444. allow_url_fopen = On
  445.  
  446. ; Define the anonymous ftp password (your email address)
  447. ;from="john@doe.com"
  448.  
  449. ; Define the User-Agent string
  450. ; user_agent="PHP"
  451.  
  452. ; Default timeout for socket based streams (seconds)
  453. default_socket_timeout = 60
  454.  
  455. ; If your scripts have to deal with files from Macintosh systems,
  456. ; or you are running on a Mac and need to deal with files from
  457. ; unix or win32 systems, setting this flag will cause PHP to
  458. ; automatically detect the EOL character in those files so that
  459. ; fgets() and file() will work regardless of the source of the file.
  460. ; auto_detect_line_endings = Off
  461.  
  462.  
  463. ;;;;;;;;;;;;;;;;;;;;;;
  464. ; Dynamic Extensions ;
  465. ;;;;;;;;;;;;;;;;;;;;;;
  466. ;
  467. ; If you wish to have an extension loaded automatically, use the following
  468. ; syntax:
  469. ;
  470. ;   extension=modulename.extension
  471. ;
  472. ; For example, on Windows:
  473. ;
  474. ;   extension=msql.dll
  475. ;
  476. ; ... or under UNIX:
  477. ;
  478. ;   extension=msql.so
  479. ;
  480. ; Note that it should be the name of the module only; no directory information
  481. ; needs to go here.  Specify the location of the extension with the
  482. ; extension_dir directive above.
  483.  
  484.  
  485. ;Windows Extensions
  486. ;Note that ODBC support is built in, so no dll is needed for it.
  487. ;
  488.  
  489. ;extension=php_bz2.dll
  490. ;extension=php_cpdf.dll
  491. ;extension=php_curl.dll
  492. ;extension=php_dba.dll
  493. ;extension=php_dbase.dll
  494. ;extension=php_dbx.dll
  495. ;extension=php_exif.dll
  496. ;extension=php_fdf.dll
  497. ;extension=php_filepro.dll
  498. extension=php_gd2.dll
  499. ;extension=php_gettext.dll
  500. ;extension=php_iconv.dll
  501. ;extension=php_ifx.dll
  502. ;extension=php_iisfunc.dll
  503. ;extension=php_imap.dll
  504. ;extension=php_interbase.dll
  505. ;extension=php_java.dll
  506. ;extension=php_ldap.dll
  507. extension=php_mbstring.dll
  508. ;extension=php_mcrypt.dll
  509. ;extension=php_mhash.dll
  510. extension=php_mime_magic.dll
  511. ;extension=php_ming.dll
  512. ;extension=php_mssql.dll
  513. ;extension=php_msql.dll
  514. extension=php_mysql.dll
  515. ;extension=php_oci8.dll
  516. ;extension=php_openssl.dll
  517. ;extension=php_oracle.dll
  518. ;extension=php_pdf.dll
  519. ;extension=php_pgsql.dll
  520. ;extension=php_shmop.dll
  521. ;extension=php_snmp.dll
  522. ;extension=php_sockets.dll
  523. ;extension=php_sybase_ct.dll
  524. ;extension=php_tidy.dll
  525. ;extension=php_w32api.dll
  526. ;extension=php_xmlrpc.dll
  527. ;extension=php_xsl.dll
  528. ;extension=php_yaz.dll
  529. ;extension=php_zip.dll
  530.  
  531. mime_magic.magicfile = "C:\Program Files\CodeX Project\PHP\magic.mime"
  532. ;;;;;;;;;;;;;;;;;;;
  533. ; Module Settings ;
  534. ;;;;;;;;;;;;;;;;;;;
  535.  
  536. [Syslog]
  537. ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
  538. ; $LOG_CRON, etc.).  Turning it off is a good idea performance-wise.  In
  539. ; runtime, you can define these variables by calling define_syslog_variables().
  540. define_syslog_variables  = Off
  541.  
  542. [mail function]
  543. ; For Win32 only.
  544. SMTP = localhost ; for Win32 only
  545. smtp_port = 25
  546. sendmail_from= me@localhost.com ; for Win32 only
  547.  
  548. ; For Win32 only.
  549. ;sendmail_from = me@example.com
  550.  
  551. ; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
  552. ;sendmail_path =
  553.  
  554. ; Force the addition of the specified parameters to be passed as extra parameters
  555. ; to the sendmail binary. These parameters will always replace the value of
  556. ; the 5th parameter to mail(), even in safe mode.
  557. ;mail.force_extra_parameters =
  558.  
  559. [SQL]
  560. sql.safe_mode = Off
  561.  
  562. [ODBC]
  563. ;odbc.default_db    =  Not yet implemented
  564. ;odbc.default_user  =  Not yet implemented
  565. ;odbc.default_pw    =  Not yet implemented
  566.  
  567. ; Allow or prevent persistent links.
  568. odbc.allow_persistent = On
  569.  
  570. ; Check that a connection is still valid before reuse.
  571. odbc.check_persistent = On
  572.  
  573. ; Maximum number of persistent links.  -1 means no limit.
  574. odbc.max_persistent = -1
  575.  
  576. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  577. odbc.max_links = -1
  578.  
  579. ; Handling of LONG fields.  Returns number of bytes to variables.  0 means
  580. ; passthru.
  581. odbc.defaultlrl = 4096
  582.  
  583. ; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
  584. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  585. ; of uodbc.defaultlrl and uodbc.defaultbinmode
  586. odbc.defaultbinmode = 1
  587.  
  588. [MySQL]
  589. ; Allow or prevent persistent links.
  590. mysql.allow_persistent = On
  591.  
  592. ; Maximum number of persistent links.  -1 means no limit.
  593. mysql.max_persistent = -1
  594.  
  595. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  596. mysql.max_links = -1
  597.  
  598. ; Default port number for mysql_connect().  If unset, mysql_connect() will use
  599. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  600. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  601. ; at MYSQL_PORT.
  602. mysql.default_port =
  603.  
  604. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  605. ; MySQL defaults.
  606. mysql.default_socket =
  607.  
  608. ; Default host for mysql_connect() (doesn't apply in safe mode).
  609. mysql.default_host =
  610.  
  611. ; Default user for mysql_connect() (doesn't apply in safe mode).
  612. mysql.default_user =
  613.  
  614. ; Default password for mysql_connect() (doesn't apply in safe mode).
  615. ; Note that this is generally a *bad* idea to store passwords in this file.
  616. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  617. ; and reveal this password!  And of course, any users with read access to this
  618. ; file will be able to reveal the password as well.
  619. mysql.default_password =
  620.  
  621. ; Maximum time (in secondes) for connect timeout. -1 means no limit
  622. mysql.connect_timeout = 60
  623.  
  624. ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  625. ; SQL-Errors will be displayed.
  626. mysql.trace_mode = Off
  627.  
  628. [MySQLI]
  629.  
  630. ; Maximum number of links.  -1 means no limit.
  631. mysqli.max_links = -1
  632.  
  633. ; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
  634. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  635. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  636. ; at MYSQL_PORT.
  637. mysqli.default_port = 3306
  638.  
  639. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  640. ; MySQL defaults.
  641. mysqli.default_socket =
  642.  
  643. ; Default host for mysql_connect() (doesn't apply in safe mode).
  644. mysqli.default_host =
  645.  
  646. ; Default user for mysql_connect() (doesn't apply in safe mode).
  647. mysqli.default_user =
  648.  
  649. ; Default password for mysqli_connect() (doesn't apply in safe mode).
  650. ; Note that this is generally a *bad* idea to store passwords in this file.
  651. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_password")
  652. ; and reveal this password!  And of course, any users with read access to this
  653. ; file will be able to reveal the password as well.
  654. mysqli.default_password =
  655.  
  656. ; Allow or prevent reconnect
  657. mysqli.reconnect = Off
  658.  
  659. [mSQL]
  660. ; Allow or prevent persistent links.
  661. msql.allow_persistent = On
  662.  
  663. ; Maximum number of persistent links.  -1 means no limit.
  664. msql.max_persistent = -1
  665.  
  666. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  667. msql.max_links = -1
  668.  
  669. [PostgresSQL]
  670. ; Allow or prevent persistent links.
  671. pgsql.allow_persistent = On
  672.  
  673. ; Detect broken persistent links always with pg_pconnect().
  674. ; Auto reset feature requires a little overheads.
  675. pgsql.auto_reset_persistent = Off
  676.  
  677. ; Maximum number of persistent links.  -1 means no limit.
  678. pgsql.max_persistent = -1
  679.  
  680. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  681. pgsql.max_links = -1
  682.  
  683. ; Ignore PostgreSQL backends Notice message or not.
  684. ; Notice message logging require a little overheads.
  685. pgsql.ignore_notice = 0
  686.  
  687. ; Log PostgreSQL backends Noitce message or not.
  688. ; Unless pgsql.ignore_notice=0, module cannot log notice message.
  689. pgsql.log_notice = 0
  690.  
  691. [Sybase]
  692. ; Allow or prevent persistent links.
  693. sybase.allow_persistent = On
  694.  
  695. ; Maximum number of persistent links.  -1 means no limit.
  696. sybase.max_persistent = -1
  697.  
  698. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  699. sybase.max_links = -1
  700.  
  701. ;sybase.interface_file = "/usr/sybase/interfaces"
  702.  
  703. ; Minimum error severity to display.
  704. sybase.min_error_severity = 10
  705.  
  706. ; Minimum message severity to display.
  707. sybase.min_message_severity = 10
  708.  
  709. ; Compatability mode with old versions of PHP 3.0.
  710. ; If on, this will cause PHP to automatically assign types to results according
  711. ; to their Sybase type, instead of treating them all as strings.  This
  712. ; compatability mode will probably not stay around forever, so try applying
  713. ; whatever necessary changes to your code, and turn it off.
  714. sybase.compatability_mode = Off
  715.  
  716. [Sybase-CT]
  717. ; Allow or prevent persistent links.
  718. sybct.allow_persistent = On
  719.  
  720. ; Maximum number of persistent links.  -1 means no limit.
  721. sybct.max_persistent = -1
  722.  
  723. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  724. sybct.max_links = -1
  725.  
  726. ; Minimum server message severity to display.
  727. sybct.min_server_severity = 10
  728.  
  729. ; Minimum client message severity to display.
  730. sybct.min_client_severity = 10
  731.  
  732. [dbx]
  733. ; returned column names can be converted for compatibility reasons
  734. ; possible values for dbx.colnames_case are
  735. ; "unchanged" (default, if not set)
  736. ; "lowercase"
  737. ; "uppercase"
  738. ; the recommended default is either upper- or lowercase, but
  739. ; unchanged is currently set for backwards compatibility
  740. dbx.colnames_case = "unchanged"
  741.  
  742. [bcmath]
  743. ; Number of decimal digits for all bcmath functions.
  744. bcmath.scale = 0
  745.  
  746. [browscap]
  747. ;browscap = extra/browscap.ini
  748.  
  749. [Informix]
  750. ; Default host for ifx_connect() (doesn't apply in safe mode).
  751. ifx.default_host =
  752.  
  753. ; Default user for ifx_connect() (doesn't apply in safe mode).
  754. ifx.default_user =
  755.  
  756. ; Default password for ifx_connect() (doesn't apply in safe mode).
  757. ifx.default_password =
  758.  
  759. ; Allow or prevent persistent links.
  760. ifx.allow_persistent = On
  761.  
  762. ; Maximum number of persistent links.  -1 means no limit.
  763. ifx.max_persistent = -1
  764.  
  765. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  766. ifx.max_links = -1
  767.  
  768. ; If on, select statements return the contents of a text blob instead of its id.
  769. ifx.textasvarchar = 0
  770.  
  771. ; If on, select statements return the contents of a byte blob instead of its id.
  772. ifx.byteasvarchar = 0
  773.  
  774. ; Trailing blanks are stripped from fixed-length char columns.  May help the
  775. ; life of Informix SE users.
  776. ifx.charasvarchar = 0
  777.  
  778. ; If on, the contents of text and byte blobs are dumped to a file instead of
  779. ; keeping them in memory.
  780. ifx.blobinfile = 0
  781.  
  782. ; NULL's are returned as empty strings, unless this is set to 1.  In that case,
  783. ; NULL's are returned as string 'NULL'.
  784. ifx.nullformat = 0
  785.  
  786. [Session]
  787. ; Handler used to store/retrieve data.
  788. session.save_handler = files
  789.  
  790. ; Argument passed to save_handler.  In the case of files, this is the path
  791. ; where data files are stored. Note: Windows users have to change this
  792. ; variable in order to use PHP's session functions.
  793. ;
  794. ; As of PHP 4.0.1, you can define the path as:
  795. ;
  796. ;     session.save_path = "N;/path"
  797. ;
  798. ; where N is an integer.  Instead of storing all the session files in
  799. ; /path, what this will do is use subdirectories N-levels deep, and
  800. ; store the session data in those directories.  This is useful if you
  801. ; or your OS have problems with lots of files in one directory, and is
  802. ; a more efficient layout for servers that handle lots of sessions.
  803. ;
  804. ; NOTE 1: PHP will not create this directory structure automatically.
  805. ;         You can use the script in the ext/session dir for that purpose.
  806. ; NOTE 2: See the section on garbage collection below if you choose to
  807. ;         use subdirectories for session storage
  808. ;
  809. ; The file storage module creates files using mode 600 by default.
  810. ; You can change that by using
  811. ;
  812. ;     session.save_path = "N;MODE;/path"
  813. ;
  814. ; where MODE is the octal representation of the mode. Note that this
  815. ; does not overwrite the process's umask.
  816. ;session.save_path = "/tmp"
  817.  
  818. ; Whether to use cookies.
  819. session.use_cookies = 1
  820.  
  821. ; This option enables administrators to make their users invulnerable to
  822. ; attacks which involve passing session ids in URLs; defaults to 0.
  823. ; session.use_only_cookies = 1
  824.  
  825. ; Name of the session (used as cookie name).
  826. session.name = PHPSESSID
  827.  
  828. ; Initialize session on request startup.
  829. session.auto_start = 0
  830.  
  831. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  832. session.cookie_lifetime = 0
  833.  
  834. ; The path for which the cookie is valid.
  835. session.cookie_path = /
  836.  
  837. ; The domain for which the cookie is valid.
  838. session.cookie_domain =
  839.  
  840. ; Handler used to serialize data.  php is the standard serializer of PHP.
  841. session.serialize_handler = php
  842.  
  843. ; Define the probability that the 'garbage collection' process is started
  844. ; on every session initialization.
  845. ; The probability is calculated by using gc_probability/gc_divisor,
  846. ; e.g. 1/100 means there is a 1% chance that the GC process starts
  847. ; on each request.
  848.  
  849. session.gc_probability = 1
  850. session.gc_divisor     = 100
  851.  
  852. ; After this number of seconds, stored data will be seen as 'garbage' and
  853. ; cleaned up by the garbage collection process.
  854. session.gc_maxlifetime = 1440
  855.  
  856. ; NOTE: If you are using the subdirectory option for storing session files
  857. ;       (see session.save_path above), then garbage collection does *not*
  858. ;       happen automatically.  You will need to do your own garbage
  859. ;       collection through a shell script, cron entry, or some other method.
  860. ;       For example, the following script would is the equivalent of
  861. ;       setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
  862. ;          cd /path/to/sessions; find -cmin +24 | xargs rm
  863.  
  864. ; PHP 4.2 and less have an undocumented feature/bug that allows you to
  865. ; to initialize a session variable in the global scope, albeit register_globals
  866. ; is disabled.  PHP 4.3 and later will warn you, if this feature is used.
  867. ; You can disable the feature and the warning separately. At this time,
  868. ; the warning is only displayed, if bug_compat_42 is enabled.
  869.  
  870. session.bug_compat_42 = 1
  871. session.bug_compat_warn = 1
  872.  
  873. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  874. ; HTTP_REFERER has to contain this substring for the session to be
  875. ; considered as valid.
  876. session.referer_check =
  877.  
  878. ; How many bytes to read from the file.
  879. session.entropy_length = 0
  880.  
  881. ; Specified here to create the session id.
  882. session.entropy_file =
  883.  
  884. ;session.entropy_length = 16
  885.  
  886. ;session.entropy_file = /dev/urandom
  887.  
  888. ; Set to {nocache,private,public,} to determine HTTP caching aspects
  889. ; or leave this empty to avoid sending anti-caching headers.
  890. session.cache_limiter = nocache
  891.  
  892. ; Document expires after n minutes.
  893. session.cache_expire = 180
  894.  
  895. ; trans sid support is disabled by default.
  896. ; Use of trans sid may risk your users security.
  897. ; Use this option with caution.
  898. ; - User may send URL contains active session ID
  899. ;   to other person via. email/irc/etc.
  900. ; - URL that contains active session ID may be stored
  901. ;   in publically accessible computer.
  902. ; - User may access your site with the same session ID
  903. ;   always using URL stored in browser's history or bookmarks.
  904. session.use_trans_sid = 0
  905.  
  906. ; Select a hash function
  907. ; 0: MD5   (128 bits)
  908. ; 1: SHA-1 (160 bits)
  909. session.hash_function = 0
  910.  
  911. ; Define how many bits are stored in each character when converting
  912. ; the binary hash data to something readable.
  913. ;
  914. ; 4 bits: 0-9, a-f
  915. ; 5 bits: 0-9, a-v
  916. ; 6 bits: 0-9, a-z, A-Z, "-", ","
  917. session.hash_bits_per_character = 4
  918.  
  919. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  920. ; form/fieldset are special; if you include them here, the rewriter will
  921. ; add a hidden <input> field with the info which is otherwise appended
  922. ; to URLs.  If you want XHTML conformity, remove the form entry.
  923. ; Note that all valid entries require a "=", even if no value follows.
  924. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset="
  925. session.save_path= C:\Program Files\CodeX Project\CodeX\temp    ; argument passed to save_handler
  926.  
  927. [MSSQL]
  928. ; Allow or prevent persistent links.
  929. mssql.allow_persistent = On
  930.  
  931. ; Maximum number of persistent links.  -1 means no limit.
  932. mssql.max_persistent = -1
  933.  
  934. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  935. mssql.max_links = -1
  936.  
  937. ; Minimum error severity to display.
  938. mssql.min_error_severity = 10
  939.  
  940. ; Minimum message severity to display.
  941. mssql.min_message_severity = 10
  942.  
  943. ; Compatability mode with old versions of PHP 3.0.
  944. mssql.compatability_mode = Off
  945.  
  946. ; Connect timeout
  947. ;mssql.connect_timeout = 5
  948.  
  949. ; Query timeout
  950. ;mssql.timeout = 60
  951.  
  952. ; Valid range 0 - 2147483647.  Default = 4096.
  953. ;mssql.textlimit = 4096
  954.  
  955. ; Valid range 0 - 2147483647.  Default = 4096.
  956. ;mssql.textsize = 4096
  957.  
  958. ; Limits the number of records in each batch.  0 = all records in one batch.
  959. ;mssql.batchsize = 0
  960.  
  961. ; Specify how datetime and datetim4 columns are returned
  962. ; On => Returns data converted to SQL server settings
  963. ; Off => Returns values as YYYY-MM-DD hh:mm:ss
  964. ;mssql.datetimeconvert = On
  965.  
  966. ; Use NT authentication when connecting to the server
  967. mssql.secure_connection = Off
  968.  
  969. ; Specify max number of processes. Default = 25
  970. ;mssql.max_procs = 25
  971.  
  972. [Assertion]
  973. ; Assert(expr); active by default.
  974. ;assert.active = On
  975.  
  976. ; Issue a PHP warning for each failed assertion.
  977. ;assert.warning = On
  978.  
  979. ; Don't bail out by default.
  980. ;assert.bail = Off
  981.  
  982. ; User-function to be called if an assertion fails.
  983. ;assert.callback = 0
  984.  
  985. ; Eval the expression with current error_reporting().  Set to true if you want
  986. ; error_reporting(0) around the eval().
  987. ;assert.quiet_eval = 0
  988.  
  989. [Ingres II]
  990. ; Allow or prevent persistent links.
  991. ingres.allow_persistent = On
  992.  
  993. ; Maximum number of persistent links.  -1 means no limit.
  994. ingres.max_persistent = -1
  995.  
  996. ; Maximum number of links, including persistents.  -1 means no limit.
  997. ingres.max_links = -1
  998.  
  999. ; Default database (format: [node_id::]dbname[/srv_class]).
  1000. ingres.default_database =
  1001.  
  1002. ; Default user.
  1003. ingres.default_user =
  1004.  
  1005. ; Default password.
  1006. ingres.default_password =
  1007.  
  1008. [Verisign Payflow Pro]
  1009. ; Default Payflow Pro server.
  1010. pfpro.defaulthost = "test-payflow.verisign.com"
  1011.  
  1012. ; Default port to connect to.
  1013. pfpro.defaultport = 443
  1014.  
  1015. ; Default timeout in seconds.
  1016. pfpro.defaulttimeout = 30
  1017.  
  1018. ; Default proxy IP address (if required).
  1019. ;pfpro.proxyaddress =
  1020.  
  1021. ; Default proxy port.
  1022. ;pfpro.proxyport =
  1023.  
  1024. ; Default proxy logon.
  1025. ;pfpro.proxylogon =
  1026.  
  1027. ; Default proxy password.
  1028. ;pfpro.proxypassword =
  1029.  
  1030. [Sockets]
  1031. ; Use the system read() function instead of the php_read() wrapper.
  1032. sockets.use_system_read = On
  1033.  
  1034. [com]
  1035. ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
  1036. ;com.typelib_file =
  1037. ; allow Distributed-COM calls
  1038. ;com.allow_dcom = true
  1039. ; autoregister constants of a components typlib on com_load()
  1040. ;com.autoregister_typelib = true
  1041. ; register constants casesensitive
  1042. ;com.autoregister_casesensitive = false
  1043. ; show warnings on duplicate constat registrations
  1044. ;com.autoregister_verbose = true
  1045.  
  1046. [mbstring]
  1047. ; language for internal character representation.
  1048. ;mbstring.language = Japanese
  1049.  
  1050. ; internal/script encoding.
  1051. ; Some encoding cannot work as internal encoding.
  1052. ; (e.g. SJIS, BIG5, ISO-2022-*)
  1053. ;mbstring.internal_encoding = EUC-JP
  1054.  
  1055. ; http input encoding.
  1056. ;mbstring.http_input = auto
  1057.  
  1058. ; http output encoding. mb_output_handler must be
  1059. ; registered as output buffer to function
  1060. ;mbstring.http_output = SJIS
  1061.  
  1062. ; enable automatic encoding translation accoding to
  1063. ; mbstring.internal_encoding setting. Input chars are
  1064. ; converted to internal encoding by setting this to On.
  1065. ; Note: Do _not_ use automatic encoding translation for
  1066. ;       portable libs/applications.
  1067. ;mbstring.encoding_translation = Off
  1068.  
  1069. ; automatic encoding detection order.
  1070. ; auto means
  1071. ;mbstring.detect_order = auto
  1072.  
  1073. ; substitute_character used when character cannot be converted
  1074. ; one from another
  1075. ;mbstring.substitute_character = none;
  1076.  
  1077. ; overload(replace) single byte functions by mbstring functions.
  1078. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
  1079. ; etc. Possible values are 0,1,2,4 or combination of them.
  1080. ; For example, 7 for overload everything.
  1081. ; 0: No overload
  1082. ; 1: Overload mail() function
  1083. ; 2: Overload str*() functions
  1084. ; 4: Overload ereg*() functions
  1085. ;mbstring.func_overload = 0
  1086.  
  1087. [FrontBase]
  1088. ;fbsql.allow_persistent = On
  1089. ;fbsql.autocommit = On
  1090. ;fbsql.default_database =
  1091. ;fbsql.default_database_password =
  1092. ;fbsql.default_host =
  1093. ;fbsql.default_password =
  1094. ;fbsql.default_user = "_SYSTEM"
  1095. ;fbsql.generate_warnings = Off
  1096. ;fbsql.max_connections = 128
  1097. ;fbsql.max_links = 128
  1098. ;fbsql.max_persistent = -1
  1099. ;fbsql.max_results = 128
  1100. ;fbsql.batchSize = 1000
  1101.  
  1102. [exif]
  1103. ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
  1104. ; With mbstring support this will automatically be converted into the encoding
  1105. ; given by corresponding encode setting. When empty mbstring.internal_encoding
  1106. ; is used. For the decode settings you can distinguish between motorola and
  1107. ; intel byte order. A decode setting cannot be empty.
  1108. ;exif.encode_unicode = ISO-8859-15
  1109. ;exif.decode_unicode_motorola = UCS-2BE
  1110. ;exif.decode_unicode_intel    = UCS-2LE
  1111. ;exif.encode_jis =
  1112. ;exif.decode_jis_motorola = JIS
  1113. ;exif.decode_jis_intel    = JIS
  1114.  
  1115. [Tidy]
  1116. ; The path to a default tidy configuration file to use when using tidy
  1117. ;tidy.default_config = /usr/local/lib/php/default.tcfg
  1118.  
  1119. ; Should tidy clean and repair output automatically?
  1120. ; WARNING: Do not use this option if you are generating non-html content
  1121. ; such as dynamic images
  1122. tidy.clean_output = Off
  1123.  
  1124. [soap]
  1125. ; Enables or disables WSDL caching feature.
  1126. soap.wsdl_cache_enabled=1
  1127. ; Sets the directory name where SOAP extension will put cache files.
  1128. soap.wsdl_cache_dir="/tmp"
  1129. ; (time to live) Sets the number of second while cached file will be used 
  1130. ; instead of original one.
  1131. soap.wsdl_cache_ttl=86400
  1132.  
  1133. ; Local Variables:
  1134. ; tab-width: 4
  1135. ; End:
  1136. zend_extension_ts="C:\Program Files\CodeX Project\IonCube\ioncube_loader_win_5.1.dll"